a2b32c843d8caf766ae424d8a15d1e978ac7ac29,src/test/java/com/gisgraphy/importer/GeonamesZipCodeImporterTest.java,GeonamesZipCodeImporterTest,findFeatureNoResultThenTwoResults,#,436

Before Change


	String adm3COde = "adm3code";
	FulltextQuery fulltextQuery = new FulltextQuery(placeName +" "+adm1Name);
	fulltextQuery.limitToCountryCode(countryCode);
	fulltextQuery.withPlaceTypes(com.gisgraphy.fulltext.Constants.CITY_AND_CITYSUBDIVISION_PLACETYPE);
	final long featureId = 456L;
	
	GeonamesZipCodeSimpleImporter importer = new GeonamesZipCodeSimpleImporter(){

After Change


	String adm3COde = "adm3code";
	FulltextQuery fulltextQuery = new FulltextQuery(placeName +" "+adm1Name);
	fulltextQuery.limitToCountryCode(countryCode);
	fulltextQuery.withPlaceTypes(com.gisgraphy.fulltext.Constants.CITY_AND_CITYSUBDIVISION_PLACETYPE).around(point);
	final long featureId = 456L;
	
	GeonamesZipCodeSimpleImporter importer = new GeonamesZipCodeSimpleImporter(){